home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 039a / mawk10.zip / ZMALLOC.H < prev    next >
C/C++ Source or Header  |  1991-10-05  |  1KB  |  55 lines

  1.  
  2. /********************************************
  3. zmalloc.h
  4. copyright 1991, Michael D. Brennan
  5.  
  6. This is a source file for mawk, an implementation of
  7. the AWK programming language.
  8.  
  9. Mawk is distributed without warranty under the terms of
  10. the GNU General Public License, version 2, 1991.
  11. ********************************************/
  12.  
  13. /*$Log:    zmalloc.h,v $
  14.  * Revision 3.3.1.1  91/09/14  17:24:33  brennan
  15.  * VERSION 1.0
  16.  * 
  17.  * Revision 3.3  91/08/13  06:52:21  brennan
  18.  * VERSION .9994
  19.  * 
  20.  * Revision 3.2  91/06/28  04:17:49  brennan
  21.  * VERSION 0.999
  22.  * 
  23.  * Revision 3.1  91/06/07  10:28:32  brennan
  24.  * VERSION 0.995
  25.  * 
  26.  * Revision 2.3  91/05/28  09:05:24  brennan
  27.  * removed main_buff
  28.  * 
  29.  * Revision 2.2  91/05/22  07:48:33  brennan
  30.  * removed __STDC__
  31.  * 
  32.  * Revision 2.1  91/04/08  08:24:19  brennan
  33.  * VERSION 0.97
  34.  * 
  35. */
  36.  
  37. /* zmalloc.h */
  38.  
  39. #ifndef  ZMALLOC_H
  40. #define  ZMALLOC_H
  41.  
  42. #if ! HAVE_STDLIB_H
  43. char *malloc() , *realloc() ;
  44. void free() ;
  45. #endif
  46.  
  47.  
  48. PTR  PROTO( zmalloc, (unsigned) ) ;
  49. void PROTO( zfree, (PTR, unsigned) ) ;
  50. PTR  PROTO( zrealloc , (PTR,unsigned,unsigned) ) ;
  51.  
  52.  
  53.  
  54. #endif  /* ZMALLOC_H */
  55.